import Layout from '@components/Layouts/Layout'; import { fetchAllPostsSlug } from '@services/graphql/blog'; import { getPostBySlug } from '@services/graphql/post'; import { NextPageWithLayout } from '@ts/types/app'; import { ArticleProps } from '@ts/types/articles'; import { loadTranslation } from '@utils/helpers/i18n'; import { GetStaticPaths, GetStaticProps, GetStaticPropsContext } from 'next'; import { ParsedUrlQuery } from 'querystring'; import { ReactElement } from 'react'; const SingleArticle: NextPageWithLayout = ({ post }) => { return (

{post.title}

); }; SingleArticle.getLayout = function getLayout(page: ReactElement) { return {page}; }; interface PostParams extends ParsedUrlQuery { slug: string; } export const getStaticProps: GetStaticProps = async ( context: GetStaticPropsContext ) => { const translation = await loadTranslation( context.locale!, process.env.NODE_ENV === 'production' ); const { slug } = context.params as PostParams; const post = await getPostBySlug(slug); return { props: { post, translation, }, }; }; export const getStaticPaths: GetStaticPaths = async () => { const allSlugs = await fetchAllPostsSlug(); return { paths: allSlugs.map((post) => `/article/${post.slug}`), fallback: true, }; }; export default SingleArticle;